home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F32660_testMultiIntegrate.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-10-31  |  468 b   |  19 lines

  1. <xsl:stylesheet version="1.0" 
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. >
  4.   <xsl:import href="multiIntegrate.xsl"/>
  5.   
  6.   <xsl:output method="text"/>
  7.  
  8.   <xsl:template match="/">
  9.     <xsl:variable name="vResult">
  10.         <xsl:call-template name="multiIntegrate">
  11.           <xsl:with-param name="pList" select="/*/*"/>
  12.         </xsl:call-template>
  13.     </xsl:variable>
  14.     
  15.     <xsl:value-of select="4 * $vResult"/>
  16.   </xsl:template>
  17.   
  18. </xsl:stylesheet>
  19.